home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / newmat.exe / INCLUDE.HXX < prev    next >
Text File  |  1991-07-30  |  948b  |  46 lines

  1. //$$ include.hxx         include files required by various versions of C++
  2.  
  3. #define Glock
  4.  
  5. #ifdef __ZTC__                          // Zortech
  6.    #include <stream.hpp>
  7.    #include <stdlib.h>
  8.    #include <math.h>
  9.    #define flush ""
  10.    #undef Glock
  11. #endif
  12.  
  13. #ifdef __BCPLUSPLUS__                   // Borland
  14.    #include <iostream.h>
  15.    #include <stdlib.h>
  16.    #include <math.h>
  17.    #undef Glock
  18.    #undef __TURBOC__
  19. #endif
  20.  
  21. #ifdef __TURBOC__                       // Turbo
  22.    #include <iostream.h>
  23.    #include <stdlib.h>
  24.    #include <math.h>
  25.    #undef Glock
  26. #endif
  27.  
  28. #ifdef ATandT                           // AT&T
  29. #include <stream.h>
  30. extern "C" {
  31. #include <stdlib.h>
  32. }
  33. extern "C" {
  34. #include <math.h>
  35. }
  36. #undef Glock
  37. #endif
  38.  
  39. #ifdef Glock                            // Glockenspiel
  40. #include <stream.hxx>
  41.    extern "C" { #include <stdlib.h> }
  42.    extern "C" { #include <math.h> }
  43. #define NO_LONG_NAMES 0
  44. #endif
  45.  
  46.